:root {
  --main-color: #2aabee;
  --color-hover: #0471ac;
  --white: #fff;
  --pdng: 100px;
  --mt: 100px;
  --gradient: linear-gradient(
    150deg,
    #04538f 0%,
    #3490dc 21%,
    #135c9f 45%,
    #012850 66%,
    #002d67 100%
  );
  --brdrds: 25px;
  --bxsdw: 0px 0px 3px 6px #7539691d;
  --trnshn: all 0.2s ease-in;
  --black: #1e1e1e;
  --gray: #bcbaba;
  --background: #222222;
  --bggrd: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.83) 0%,
    rgba(0, 0, 0, 0.85) 30%,
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

@font-face {
  font-family: "Involve";
  src: url("../fonts/Involve-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "Involve";
  src: url("../fonts/Involve-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Involve";
  src: url("../fonts/Involve-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Involve", sans-serif !important;
  font-weight: 400;
  font-size: 16px;
}

#header a {
  font-family: "Involve", sans-serif !important;
  font-weight: 400; 
}

h1,
h2,
h3,
h4,
.section--title, button {
  font-family: "Involve", sans-serif !important;
  font-weight: 600; /* SemiBold */
}

h3 {
  font-size: 23px !important;
}

section {
  width: 100%;
}

p {
  font-size: 1rem;
}

a {
  transition: var(--trnshn);
  text-decoration: none !important;
  &:hover {
    color: var(--color-hover);
  }
}

.container {
  max-width: 1480px !important;
  padding-inline: 15px !important;
}

.text--dec {
  background: linear-gradient(
    90deg,
    #04538f 0%,
    #3490dc 21%,
    #135c9f 45%,
    #135c9f 66%,
    #3490dc 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* для Firefox */
  color: transparent;
}

h2.section--title {
  text-transform: uppercase;
  font-size: 50px;
  letter-spacing: 1px;
  line-height: 60px;
  margin-bottom: 30px;
}

/* Buttons */

.main--btn {
  background: var(--gradient) !important;
  background-size: 200% auto;
  transition: background-position 0.4s ease;
  color: var(--white) !important;
  position: relative;
  overflow: hidden;
  border-radius: var(--brdrds);
  border: 0px solid !important;
  text-transform: uppercase;
  transition: var(--trnshn) !important;
  letter-spacing: 2px;
}

.main--btn:hover {
  transform: translateY(-4px);
  transition: var(--trnshn) !important;
  box-shadow: 0 10px 20px rgba(42, 171, 238, 0.3); /* #2aabee с прозрачностью */
}

.main--btn:hover {
  background-position: right center !important;
}

.main--btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 25%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-30deg);
  z-index: 0;
  transition: all 0.3s ease;
  animation: slide-shine 4s infinite;
}

@keyframes slide-shine {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

.btn {
  padding: 30px 70px !important;
  border-radius: var(--brdrds) !important;
  font-size: 18px !important;
}

.outline--btn {
  background-color: transparent !important;
  border: 3px solid var(--main-color) !important;
  cursor: pointer;
  position: relative;
  font-size: 18px !important;
  color: var(--white) !important;
  &:hover {
    color: var(--white) !important;
    background-color: var(--main-color) !important;
  }
}

/* .outline--btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--brdrds);
  padding: 3px;
  background: linear-gradient(90deg, #3490dc, #2aabee, #04538f);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
} */

/* Header */

header {
  z-index: 999;
  position: relative;
  padding-block: 15px;
  background: #00000058;
}

a.header--link {
  color: var(--white);
}

.header--rating {
  background: #ffffff46;
  border-radius: var(--brdrds);
  padding: 5px 10px;
  transition: var(--trnshn);
  &:hover {
    background: #ffffff21;
    transition: var(--trnshn);
  }
}

.header--phone {
  text-align: right;
  margin-left: 20px;
}

.messenger--icon:hover {
  transform: translateY(-4px);
  transition: var(--trnshn) !important;
}

.messenger--icon {
  transition: var(--trnshn) !important;
}

.header--phone a:hover {
  color: var(--color-hover) !important;
}

.header--rating span {
  color: var(--white);
  font-weight: 600;
}

.header--ratings {
  gap: 20px;
  display: flex;
}

.header--rating img {
  max-width: 30px;
}

/* Hero */

#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bggrd);
  z-index: 0;
  pointer-events: none;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero {
  background-image: url(/images/bg.jpg);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  position: relative;
  margin-top: -150px;
  padding-block: 250px 250px;
}

h1.main--title {
  font-size: 64px;
  line-height: 72px;
  margin-bottom: 35px;
  color: var(--white);
  text-transform: uppercase;
  text-wrap: balance;
}

.main--dec {
  color: var(--main-color);
}

.hero--buttons {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero--features {
  display: flex;
  justify-content: space-between;
  max-width: 850px;
  margin-bottom: 50px;
}

img.hero--features-icon {
  max-height: 52px;
  text-align: center;
  margin: auto;
  display: block;
  margin-bottom: 9px;
}

p.hero--features-text {
  text-align: center;
  font-size: 16px;
  color: var(--white);

  margin-bottom: 0;
}

.hero--features-item {
  flex-direction: column;
  display: flex;
  position: relative;
}

.hero--features-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30%;
  transform: translateY(-50%);
  width: 3px;
  height: 100%;
  background-image: url(/images/icons/line.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

p.hero--subtitle {
  color: var(--white);
  font-weight: 500;
  margin-bottom: 30px;
}

/* Video */

.video--wrapper {
  position: relative;
  display: block;
  margin: auto;
  border-radius: var(--brdrds);
  top: -130px;
  max-height: 450px;
  overflow: hidden;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
}
.play-button::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 50px solid #fff;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
}
video {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--brdrds);
  height: 450px !important;
}

/* Service */

p.services--subtitle {
  color: var(--black);
  font-weight: 600;
  font-size: 18px;
}

.services--card {
  border-radius: var(--brdrds);
  overflow: hidden;
  position: relative;
  height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  will-change: transform;
}

.services--card:hover img.services--image {
  transform: scale(1.03);
  transition: var(--trnshn);
}

img.services--image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
  transition: var(--trnshn);
  will-change: transform;
}

.services--card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.services--content {
  position: relative;
  z-index: 3;
  margin-top: auto;
  color: var(--white);
}

.services--urgent a.btn.main--btn {
  margin-top: 15px;
  width: 100%;
}

/* CTA */



section.cta--offer2 {
  background-image: url(/images/bg3.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  position: relative;
  margin-top: var(--mt);
  padding-block: var(--pdng);
  color: var(--black);
}

.cta--offer2 .container {
  position: relative;
  z-index: 3;
}

.cta--offer2::after {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 30%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#cta--offer2 a.btn.outline--btn {
  color: var(--black) !important;
  &:hover {
    color: var(--white) !important;
  }
}

section.cta--offer {
  background-image: url(/images/bg2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  position: relative;
  margin-top: var(--mt);
  padding-block: var(--pdng);
  color: var(--white);
}

.cta--offer .container {
  position: relative;
  z-index: 3;
}

.cta--contacts {
  margin-bottom: 150px;
  height: 100px;
}

.messenger--btn {
  padding: 0px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 115px !important;
  &:hover {
    background: var(--main-color) !important;
  }
}

.cta--contacts a {
  height: 100%;
}

p.cta--note {
  font-size: 24px;
  font-weight: 600 !important;
}

/* Guarantee */
.guarantee {
  margin-top: var(--mt);
}

.requisite {
  font-weight: 400;
}

/* Reviews */

.reviews--wrapper span {
  color: var(--black) !important;
}

.reviews--section {
  margin-top: var(--mt);
  background: #1e1e1e;
  padding-block: 100px 50px;
}

.rating--item {
  display: flex;
  gap: 30px;
  color: var(--white);
  background: #1e1e1e;
  border-radius: var(--brdrds);
  padding: 20px;
  width: 32%;
}

img.rating--logo {
  max-width: 90px;
}

.rating--stars {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 15px;
}

.rating--stars span {
  margin-left: 10px;
  font-weight: 600;
}

p.rating--text {
  color: #ffffff71;
}

/* Projects */

section.projects-section {
  margin-top: var(--mt);
}

.projects--img {
  max-height: 345px;
  border-radius: var(--brdrds);
  overflow: hidden;
  margin-bottom: 15px;
}

p.projects--desc {
  margin-bottom: 30px;
}

.projects--card .btn {
  width: 100%;
}

h3.projects--title {
  margin-bottom: 0px;
}

.projects--img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

p.section--subtitle {
  font-weight: 600;
  color: var(--black);
}

/* Quality */

section.quality--section {
  margin-top: var(--mt);
  padding-block: var(--pdng);
  background: #f4f4f4;
}

img.quality--icon {
  height: 80px;
  display: block;
  margin-inline: auto;
  margin-bottom: 30px;
}

.quality--item {
  text-align: center;
  position: relative;
  padding-right: 15px;
  height: 100%;
}

.quality--item::before {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background: var(--gradient);
  content: "";
  position: absolute;
  top: -20px;
  left: 80px;
  opacity: 0.1;
}

.quality--features > .col-lg-3:not(:last-child) .quality--item {
  border-right: 1px solid #ccc;
}

h3.quality--title {
  margin-bottom: 15px;
}

.row.quality--features.g-4 {
  margin-top: 50px;
}

section.contacts {
  background: var(--black);
  padding-block: var(--pdng) 35px;
}

.contacts--messendgers {
  display: flex;
  gap: 15px;
  margin-right: 120px;
}

.contacts--info > .contacts--text:first-child {
  margin-right: 50px;
}

.contacts--info {
  margin-bottom: 50px;
}

.contacts--text img {
  max-width: 20px;
}

a.contacts--text {
  color: var(--white);
  font-size: 18px;
  &:hover {
    color: var(--color-hover);
  }
}

.contacts--phone {
  margin-right: 50px;
}

.contacts--map-wrapper {
  border-radius: var(--brdrds);
  overflow: hidden;
}

.contacts--bottom {
  color: #ffffff71 !important;
  text-align: center;
}

a.contacts--privacy {
  color: #ffffff71;
  &:hover {
    color: var(--color-hover);
  }
}

@media (width <= 1400px) {
  h1.main--title {
    font-size: 57px;
    line-height: 67px;
  }
  img.hero--features-icon {
    max-height: 45px;
  }
  img.quality--icon {
    height: 60px;
  }
  .quality--item::before {
    width: 70px;
    height: 70px;
  }
  h3 {
    font-size: 23px !important;
  }
  h2.section--title {
    font-size: 47px;
    line-height: 57px;
  }
  .logotype {
    width: 120px;
  }
  .header--ratings {
    gap: 15px;
  }
  .header--rating img {
    max-width: 20px;
  }
  .messenger--icon {
    width: 30px;
  }
  .header--phone {
    margin-left: 10px;
  }
}

@media (width <= 991.98px) {
  h1.main--title {
    font-size: 43px;
    line-height: 60px;
  }

  .header--contacts,
  .header--ratings {
    display: none !important;
  }

  #hero {
    margin-top: -105px;
    padding-block: 170px 200px;
  }
  h2.section--title {
    font-size: 32px;
    line-height: 42px;
  }
  .hero--features-item:not(:last-child)::after {
    top: 50%;
    right: -20%;
  }
}

@media (width <= 767.98px) {
  h1.main--title {
    font-size: 35px;
    line-height: 45px;
  }

  
  h2.section--title {
    margin-bottom: 10px;
  }
  
  img.hero--features-icon {
    max-height: 35px;
  }
  p {
    font-size: 15px;
  }
  p.hero--features-text {
    font-size: 15px;
  }
}

@media (width <= 575.98px) {
  :root {
    --pdng: 70px;
    --mt: 70px;
    --bggrd: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.83) 0%,
      rgba(0, 0, 0, 0.85) 40%,
      rgba(0, 0, 0, 0.6) 70%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .messenger--btn {
    width: 47% !important;
  }

  h2.section--title {
    margin-bottom: 10px;
    font-size: 23px;
    line-height: 30px;
    text-wrap: balance;
  }
  h1.main--title {
    font-size: 25px;
    line-height: 33px;
    text-align: center;
    text-wrap: balance;
  }
  #hero {
    padding-block: 140px 130px;
  }

  p.services--subtitle {
    font-size: 15px;
  }

  .hero--buttons {
    flex-direction: column;
  }
  .hero--buttons a {
    width: 100%;
  }
  .btn {
    padding: 18px 10px !important;
    font-size: 16px !important;
  }
  .hero--features {
    flex-direction: column;
    gap: 25px;
  }
  .hero--buttons {
    gap: 12px;
  }
  p.hero--subtitle {
    color: var(--white);
    font-weight: 600;
    text-align: center;
  }
  .play-button {
    width: 90px;
    height: 90px;
  }
  .play-button::before {
    border-left: 30px solid #fff;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
  }
  .video--wrapper {
    top: -80px;
  }

  video {
    height: 270px !important;
  }

  .services--card {
    border-radius: var(--brdrds);
    overflow: hidden;
    position: relative;
    height: 350px;
  }
  .cta--offer .btn,
  .cta--offer2 .btn {
    width: 100%;
  }

  .cta--contacts a {
    height: fit-content;
  }

  .rating--item {
    display: flex;
    gap: 15px;
    width: 100%;
  }
  img.rating--logo {
    max-width: 70px;
  }
  p.rating--text {
    font-size: 13px;
    margin-bottom: 0;
  }
  .reviews--section {
    padding-block: 70px 50px;
  }
  section.cta--offer {
    background-image: url(/images/bg-mob1.jpg);
    position: relative;
  }
  .cta--offer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.4) 50%,

      rgba(0, 0, 0, 0) 100%
    );
    z-index: 0;
    pointer-events: none;
  }

  .cta--offer2::after {
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.8) 60%,
      rgba(255, 255, 255, 0.6) 90%,
      rgba(255, 255, 255, 0) 100%
    );
  }
  .quality--features > .col-lg-3:not(:last-child) .quality--item {
    border-right: 0px solid;
  }
  .quality--item::before {
    width: 50px;
    height: 50px;
    top: -10px;
    left: 110px;
  }
  img.quality--icon {
    height: 55px;
  }
  img.quality--icon {
    margin-bottom: 15px;
  }

  h3.quality--title br {
    display: none;
  }

  .quality--item {
    padding-right: 0px;
  }

  p.quality--text {
    text-wrap: balance;
  }

  h3.quality--title {
    margin-bottom: 8px;
  }

  .quality--item {
    margin-bottom: 30px;
  }

  .row.quality--features.g-4 {
    margin-top: 35px;
  }

  .contacts--bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 15px;
  }
}

#header a {
 color: white;
 font-family: "Involve", sans-serif !important;
  font-weight: 400;
}

p.projects--desc {
    color: black;
}

p.services--text {
    text-wrap: balance;
}

.main #header {
 background: #00000058; 
}

.main #bottom, .main .sparky_row6.sparky_full {
  display: none;
}

#video-section button {
     background: var(--gradient) !important;
      border: 0px solid;
}

.control-right, .control-left {
    position: absolute; 
}

.control-right {
 right: 0; 
}

.control-left {
  left: 0; 
}

p.rating--text {
    margin: 0;
}

.sparky_cell.mp_user2.sparkle12 {
    padding: 0px;
}

img.logotype {
    width: 170px;
}

.contacts--map-wrapper {
    max-height: 400px;
}

.nav-toggle {
 background: url(/images/icons/burger2.svg); 
      background-repeat: no-repeat;
    background-position: 0px 7px;
  
}

#header .sparky_container {
    display: flex;
    align-items: center;
}

 #header {
   transition: 0.3s;
    padding: 15px;
    height: auto;
  }
  
   #header .sparky_cell {
    padding:  0px;
}

#header.fixed-header {
  transition: 0.3s;
  background: black;
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000 !important;
}

.mnu_mainmenu > li > a, .mnu_mainmenu > li > span {
    padding: 0 15px;
}

@media (width <= 1400px) {
  .mnu_mainmenu > li > a, .mnu_mainmenu > li > span {
    padding: 0 10px;
}

}

@media (width <= 1200px) {
  .mnu_mainmenu > li > a, .mnu_mainmenu > li > span {
    padding: 0 5px;
}
#header a {
    font-size: 14px;
}
}

@media (width <= 992px) {
 

  .sparky_cell.mp_top3.sparkle3 {
    display: none;
  }

 #header  .mp_top2 {
    width: 20% !important;
  }
 #header .mp_top1 {
    width: 80% !important;
  }
}

@media (width <= 576px) {
 #header {
    padding: 10px 15px;
  }

 #header  .mp_top2 {
    width: 40% !important;
  }
 #header .mp_top1 {
    width: 60% !important;
  }
}

/* Service-hero */

#hero--services .row {
  position: relative;
  z-index: 3;
}

#hero--services {
  position: relative;
  padding-block: 180px 100px;
  margin-top: -80px;
  overflow: hidden;
}

img.service--main-img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(0.4);
}

.description--services p {
  font-size: 18px;
  text-wrap: balance;
}

.description--services {
  margin-bottom: 30px;
}

.services--features {
  max-width: 800px !important;
  margin: auto;
}

.services--features .hero--features {
  max-width: 100% !important;
  margin-bottom: 80px;
}

.services--features .main--btn {
  margin: auto;
  text-align: center;
  max-width: 600px;
  display: block;
}

.services--num {
  text-align: center;
  font-weight: 700;
  font-size: 50px;
}

/* Services list */

section.services--list {
  margin-top: var(--mt);
}

ul.services--list {
  font-size: 18px;
}

section#services--advantage {
  margin-top: var(--mt);
}

p.services--text {
  color: var(--black);
  margin-bottom: 0;
  text-align: center;
}

.advantage--card:hover {
  transform: translateY(-5px);
  transition: var(--trnshn);
}

.advantage--card {
  background: var(--white);
  transition: var(--trnshn);
  box-shadow: 0px 5px 10px 5px #71717127;
  padding: 20px;
  height: 100%;
  border-radius: var(--brdrds);
  border: 1px solid var(--main-color);
}

.advantage--card-body {
  color: var(--black);
}

img.advantage--icon {
  height: 80px;
  max-width: 100px;
  display: block;
  margin-inline: auto;
  margin-bottom: 10px;
}

/* Portfolio */

section#services--portfolio {
  margin-top: var(--mt);
}

.portfolio-item {
  max-height: 450px;
  overflow: hidden;
}

.portfolio-item:hover img {
  transform: scale(1.05);
  transition: var(--trnshn);
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trnshn);
}

/* Work */

.circle-number {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--main-color); /* Задаем основной цвет */
  color: white;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  margin-right: 15px;
}

.step {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.step-text {
  margin-left: 20px;
  font-size: 1.1rem;
}

.step .circle-number {
  margin-right: 15px;
  flex-shrink: 0;
}

section#step--section {
  margin-top: var(--mt);
  background-image: url(/images/bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  position: relative;
  margin-top: var(--mt);
  color: var(--white);
  background-position: center center;
  padding-block: var(--pdng);
}

#step--section .advantage--card {
  display: flex;
}

/* Faq */

#faq {
  margin-top: var(--mt);
}

.accordion-item button {
  color: var(--white) !important;
}

button.accordion-button.collapsed {
  background: transparent;
}

#faq .accordion-button {
  font-size: 21px !important;
  font-weight: 500;
  align-items: normal !important;
  position: relative;
  flex-direction: column-reverse;
  padding: 20px !important;
  color: black !important;
  border-bottom: 1px solid var(--main-color) !important;
}

div#accordionExample {
  background: transparent;
  padding: 0px;
  /* border-radius: var(--brdrds);
  box-shadow: var(--bxsdw); */
}

#faq .accordion-button {
  font-size: 21px !important;
  font-weight: 500;
  align-items: normal !important;
  position: relative;
  flex-direction: column-reverse;
  padding: 30px 30px 30px 0 !important;
}

#faq .accordion-item p {
  color: var(--white) !important;
}

#faq .accordion-item {
  margin-bottom: 5px;
  border-left: 0px;
  border-right: 0px;
  border-top: 0px;
  overflow: hidden;
  border-bottom: 1px solid #ffffff59 !important;
  /* border-radius: var(--brdrds) !important; */

  background: transparent;
  transition: var(--trnshn);
  &:hover {
    translate: 0 -3px;
    transition: var(--trnshn);
  }
}

#faq .accordion-button:not(.collapsed) {
  background-color: transparent !important;
  box-shadow: none !important;
}

#faq .accordion-body p {
  color: black !important;
}

#faq .accordion-body {
  padding: 0px !important;
  color: black !important;
  padding: 30px 30px 30px 30px !important;
  li {
    color: var(--white);
  }
}

#faq .accordion-button::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-image: url(/images/icons/plus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 25%;
  right: 5%;
  transition: var(--trnshn);
}

#faq .accordion-button:not(.collapsed)::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-image: url("/images/icons/plus.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 25%;
  right: 5%;
  transition: var(--trnshn);
  transform: rotate(45deg);
}

p.section--subtitle.text-center {
  margin-bottom: 30px;
}

/* CTA */


section#cta--section .cf-form-wrap.cf-col-16 {
    padding: 0;
}

section#cta--section h3 {
  margin-bottom: 30px;
}

section#cta--section .cf-fields {
      align-items: end;
}

section# button.cf-btn.btn.main--btn {
    padding-block: 17px !important;
}

.cta--list {
    padding-left: 0px;
    margin-bottom: 50px;
    margin-left: 18px;
}

.cta--list li {
  margin-bottom: 10px;
  font-size: 18px;
}

::marker {
  color: var(--main-color);
}

.row.advantage--card {
  position: relative;
  height: 460px;
  z-index: 3;
  width: 100%;
  margin: auto;
}

img.cta--img {
  position: absolute;
  bottom: 0;
  max-width: 320px;
  margin: auto;
  display: block;
}

.form--wrapper .cta--contacts {
  margin-bottom: 0;
}

.form--wrapper a.btn.outline--btn {
  color: var(--black) !important;
}

section#cta--section {
  background-image: url(/images/bg3.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  position: relative;
  padding-block: var(--pdng);
}

section#cta--section::after {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.969) 0%,
    rgba(255, 255, 255, 0.85) 40%,
    rgba(255, 255, 255, 0.837) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}


/* Blog */


.stati h2 {
      font-size: 30px;
    margin-bottom: 10px;
    padding: 0px;
}

.stati a {
  padding-top: 0px;
      font-family: "Involve", sans-serif !important;
    font-weight: 600;
}

.stati main {
 margin-bottom: 70px; 
}

.stati .blog-items .blog-item {
    margin-top: 0px;
  margin-bottom: 15px;
}

.stati .blog-items .blog-item h2 a {
    font-size: 21px;
    padding: 0;
    margin-bottom: 15px;
}

.stati .blog h1 {
    margin-bottom: 0px;
}

.stati .pull-none.item-image {
    width: 100%;
}

.stati .item-image {
    max-height: 430px;
}

.stati .items-leading .blog-item {
  width: 100%;
}

.stati .blog-items.columns-2 .blog-item {
    width: calc(50% - 7.5px);
}

.stati .blog-items.columns-2 .blog-item {
 margin-top: 0px; 
  
}

.news--data-item {
  display: flex;
  gap: 13px;
  align-items: center;
}

.news--data {
  position: absolute;
  bottom: 30px;
  left: 36px;
  z-index: 3;
  display: flex;
  gap: 40px;
  p {
    color: var(--white);
    margin-bottom: 0;
  }
}

span.published-date,
span.hits {
  font-size: 18px;
  color: #ffffffb5;
}

.blog .article-list .article {
  border: 1px solid #f7f1f1 !important;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgb(178 188 191 / 10%);
  border-radius: var(--brdrds);
  img {
    border-radius: var(--brdrds) var(--brdrds) 0px 0px;
  }
}

.blog .article-list .article:hover {
  transition: all 0.3s ease;
  box-shadow: 0 30px 20px rgb(178 188 191 / 30%);
  cursor: pointer;
  transform: translateY(-5px);
}

.blog .article-list .article:hover a {
  color: var(--main-color) !important;
}

.blog h1 {
  margin-bottom: 30px;
}

.blog-item:hover img {
  transform: scale(1.02);
  transition: var(--trnshn);
  filter: brightness(0.9);
}

.item-image {
  border-radius: var(--brdrds);
}

.blog-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 35%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0) 70%);


  pointer-events: none;
}

.blog-item {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--brdrds);
  max-height: 400px;
  img {
    transition: var(--trnshn);
    border-radius: var(--brdrds);
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  figure {
    height: 100%;
    width: 100%;
  }
  h2 a {
    font-size: 23px;
    color: var(--white);
    display: block;
    line-height: 27px;
    margin-bottom: 5px;
  }
}

.component-right {
  margin-left: 30px;
}

.blog--seo .component-center {
  width: 75% !important;
}

.item-image {
  max-height: 500px;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular--news li:not(:last-child) {
  margin-bottom: 15px;
  border-bottom: 1px solid #cccccc5a;
  padding-bottom: 5px;
}

.popular--news ul {
     margin: 0; 
}

.popular--news li {
 list-style-type: none; 
}

.popular--news h3 {
  margin-bottom: 15px;
  font-weight: 600;
}

.popular--news {
  margin-top: 105px;
  border: 1px solid #00000008;
  padding: 30px;
  border-radius: var(--brdrds);
  background: var(--white);
  box-shadow: 1px 0px 20px 3px #00000011;
}

.item-content .news--data {
  position: relative;
  inset: 0;
}

.item-pageblog--seo h1 {
  margin-bottom: 30px;
  font-size: 32px;
}

.item-pageblog--seo .com-content-article__body {
  border-radius: var(--brdrds);
  background: var(--white);
  padding: 30px;
}

.item-pageblog--seo h2 {
  margin-block: 30px 15px;
  font-size: 27px;
}

.item-content span.published-date,
span.hits {
  font-size: 18px;
  color: var(--white);
}

.item-content {
  position: absolute;
  bottom: 20px;
  padding-right: 10px;
  left: 40px;
  z-index: 3;
}


@media (width <= 1400px) {
  .description--services p {
    font-size: 16px;
    margin: 0 15px;
  }
  
  .services--num {
    font-size: 40px;
    line-height: 45px;
  }
  ul.services--list {
    font-size: 16px;
  }
  .circle-number {
    margin-bottom: 15px;
  }
  
  #hero--services {
    padding-block: 100px 100px;
    }
}


/* Checkbox */

.form-check-input {
  margin: 0 3px 0 0;
}


.form-check-input:checked {
  background-color: var(--main-color);
}

.form-check-input {
  border: 1px solid black !important;
  padding: 9px !important;
  width: 9px;
  height: 9px;
}

.form-check-input:focus {
  border-color: var(--main-color);
  outline: 0;
  box-shadow: 0 0 0 0.25rem #7539693e;
}

.popup--modal {
 padding: 15px; 
  border: 2px solid var(--main-color);
}

#popup .popup--close {
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cline x1='18' y1='6' x2='6' y2='18' stroke='black' stroke-width='2'/%3E%3Cline x1='6' y1='6' x2='18' y2='18' stroke='black' stroke-width='2'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
}


.popup--modal .btn-close {
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

.popup--modal .btn-close:hover,
.popup--modal .btn-close:focus {
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

@media (width <= 767.98px) {

ul.services--list {
    margin: 0 15px;
}


  
  section#hero--services {
    padding-block: 70px;
  }

  .services--features .main--btn {
    width: 100%;
}

h1.main--title.service--title.text-center {
    margin-bottom: 10px;
}

      .description--services p {
        font-size: 15px;
        }


  
  .services--features .hero--features {
    margin-bottom: 30px;
  }
  .services--num {
    font-size: 32px;
    line-height: 37px;
  }
  .hero--features {
    gap: 20px;
  }
  img.advantage--icon {
    height: 70px;
    max-width: 85px;
  }
  #faq .accordion-button {
    font-size: 16px !important;
  }
  .row.advantage--card {
    height: auto;
    margin: auto;
    overflow: hidden;
  }
  img.cta--img {
    position: relative;
    bottom: -25px;
    max-width: 215px;
  }
  .cta--list li {
    margin-bottom: 5px;
    font-size: 16px;
  }

 section#cta--section  .cf-form-wrap.cf-col-16 {
    padding: 0;
}

section#cta--section h3 {
    margin-bottom: 10px;
}
  
  .cta--list {
    margin: 0px 0px 30px 0px;
  }
  .cta--section a.btn.outline--btn {
    width: 100%;
  }
  .form--wrapper {
    height: 100%;
  }
  #faq .accordion-button::after {
    right: 0%;
    width: 1.5rem;
    height: 1.5rem;
  }
  #faq .accordion-button:not(.collapsed)::after {
    right: 0%;
    width: 1.5rem;
    height: 1.5rem;
  }
  #faq .accordion-body p {
    color: black !important;
    margin-bottom: 0;
    font-size: 14px;
  }
  #faq .accordion-button {
    padding: 20px 30px 20px 0 !important;
  }

  .services--card::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 100%);
    }

   .description--services p {
    margin: 0 15px;
  }

   .services--card {
    height: auto;
  }
  
}

